DiGrande.it
Braille and Technologies for Visual Impairment

Exp- Returns natural logarithm elevated to power

Function that returns the base E of the natural logarithm elevated to the power of a number.

- Exp(N): float

Parameters:

- (float) N: exponent applied to the base E of the natural logarithm.

Description:

Use the Exp function to derive the base E of the natural logarithm elevated to the power of a number. The Exp function is reversed from the Ln function, which obtains the natural logarithm of a number.

Examples:

// shows the basis of the natural logarithm elevated to the power of 2

MsgBox(Exp(2))

// Stores the result of the Exp function in R with exponent 3

R = Exp(3)

// Stores the natural logarithm of R

N = Ln(R)

// N is to contain the number 3

MsgBox(R,N)